home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / dev / lang / Python152_Src.lha / Python152_Source / Modules / protos / structmodule.h < prev    next >
Text File  |  1999-04-25  |  532b  |  10 lines

  1. static int get_long ( PyObject *v , long *p );
  2. static int get_ulong ( PyObject *v , unsigned long *p );
  3. static int pack_float ( double x , char *p , int incr );
  4. static int pack_double ( double x , char *p , int incr );
  5. static PyObject *unpack_float ( char *p , int incr );
  6. static PyObject *unpack_double ( char *p , int incr );
  7. static PyObject *struct_calcsize ( PyObject *self , PyObject *args );
  8. static PyObject *struct_pack ( PyObject *self , PyObject *args );
  9. static PyObject *struct_unpack ( PyObject *self , PyObject *args );
  10.